crypto/tls.clientHandshakeState.serverHello (field)
20 uses
crypto/tls (current package)
handshake_client.go#L31: serverHello *serverHelloMsg
handshake_client.go#L269: serverHello: serverHello,
handshake_client.go#L460: if err := transcriptMsg(hs.serverHello, &hs.finishedHash); err != nil {
handshake_client.go#L517: c.ekm = ekmFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random)
handshake_client.go#L524: if hs.suite = mutualCipherSuite(hs.hello.cipherSuites, hs.serverHello.cipherSuite); hs.suite == nil {
handshake_client.go#L556: if !hs.serverHello.ocspStapling {
handshake_client.go#L596: err = keyAgreement.processServerKeyExchange(c.config, hs.hello, hs.serverHello, c.peerCertificates[0], skx)
handshake_client.go#L654: if hs.serverHello.extendedMasterSecret {
handshake_client.go#L660: hs.hello.random, hs.serverHello.random)
handshake_client.go#L723: keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
handshake_client.go#L745: bytes.Equal(hs.serverHello.sessionId, hs.hello.sessionId)
handshake_client.go#L755: if hs.serverHello.compressionMethod != compressionNone {
handshake_client.go#L760: if c.handshakes == 0 && hs.serverHello.secureRenegotiationSupported {
handshake_client.go#L762: if len(hs.serverHello.secureRenegotiation) != 0 {
handshake_client.go#L772: if !bytes.Equal(hs.serverHello.secureRenegotiation, expectedSecureRenegotiation[:]) {
handshake_client.go#L778: if err := checkALPN(hs.hello.alpnProtocols, hs.serverHello.alpnProtocol, false); err != nil {
handshake_client.go#L782: c.clientProtocol = hs.serverHello.alpnProtocol
handshake_client.go#L784: c.scts = hs.serverHello.scts
handshake_client.go#L801: if hs.session.extMasterSecret != hs.serverHello.extendedMasterSecret {
handshake_client.go#L879: if !hs.serverHello.ticketSupported {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |